home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Arsenal Files 2
/
The Arsenal Files 2 (Arsenal Computer).ISO
/
wildcat
/
arealist.wcc
< prev
next >
Wrap
Text File
|
1994-09-02
|
804b
|
36 lines
rem very quick and dirty file area list
rem dumps currently defined file areas to a file for reference
rem brad shipp, brad.shipp@chowda.com, 1:323/120@fidonet.org
dim thisArea as fileAreaRecord, count as integer
dim today as date
currentDate(today)
open "filearea.lst" for output as #1
open "filepath.lst" for output as #2
print #1, "File Area Listing from ";makewild.bbsName
print #1, "As of ";formatDate(today,"Mm/dd/yy")
print #1, "----------------------------------------------------"
print "Working";
for count = 1 to makewild.MaxFileAreas
getFileArea(thisArea,count)
if len(trim(thisArea.name))>0 then
print ".";
print #1,count;"- ";thisArea.name
print #2,"Request Path ";thisArea.path
end if
next
print "Done!"
close #1
close #2